home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / ffeedtsr.zip / FORMFEED.TXT < prev    next >
Text File  |  1993-01-25  |  4KB  |  103 lines

  1. Formfeed.Com has been available for several years.  Using that program
  2. I'm including some documenataion to change the hot-key.  You'll need
  3. to use Debug and change the Ctrl-Code, the Scan-Code and the ASCII
  4. representation for the hot-key letter in the pop-up directions.
  5.  
  6. The above three changes are made at the following addresses:
  7.  
  8. Ctrl-Code 0136     Scan-Code  0137    ASCII Letter  01AB
  9.  
  10. Use the following procedure to make these changes:
  11.  
  12.    1.  Type:  Debug FORMFEED.COM
  13.    2.  At the prompt (-) type E 0136 (enter)
  14.        You'll get XXXX:0136  06.
  15.    Just type in the new Ctrl-Code and (enter)
  16.    3.  At the next prompt type E 0137 (enter)
  17.        You'll get XXXX:0137  21.
  18.    Again type in the matching Scan-Code and (enter)
  19.    4.  At the next prompt type E 01AB  (enter)
  20.        You'll get XXXX:01ab  46.
  21.    Now type in the the matching ASCII code for the letter you're using
  22.    in steps 2 and 3.  This will cause the correct hot-key letter to
  23.    show in the directions when you first load the program.
  24.    5.  At the prompt type W and press (enter)
  25.    6.  At the prompt type Q and press (enter)
  26.  
  27.  
  28. A secession to change the hot-key to Ctrl-H might look as follows:
  29.  
  30. debug formfeed.com
  31. -e 0136
  32. xxxx:0136  06.08
  33. -e 0137
  34. xxxx:0137  21.23
  35. -e 01ab
  36. xxxx:01ab  46.48
  37. -w
  38. Writing 00180 bytes
  39. -q
  40.  
  41. Ctrl-Code, Scan-Code, and ASCII leter need to represent the same key!  All
  42. codes must be entered in Hex!
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.     Ctrl-Codes                 Scan-Codes              ASCII
  64.  
  65. Char       DEC  HEX         Char   Dec   Hex       Char   Dec   Hex
  66. ^@ - NUL    0   00h         @       3    03h        @      64    40h
  67. ^A - SOH    1   00h         A      30    1Eh        A      65    41h
  68. ^B - STX    2   02h         B      48    30h        B      66    42h
  69. ^C - ETX    3   03h         C      46    2Eh        C      67    43h
  70. ^D - EOT    4   04h         D      32    20h        D      68    44h
  71. ^E - ENQ    5   05h         E      18    12h        E      69    45h
  72. ^F - ACK    6   06h         F      33    21h        F      70    46h
  73. ^G - BEL    7   07h         G      34    22h        G      71    47h
  74. ^H - BS     8   08h         H      35    23h        H      72    48h
  75. ^I - HT     9   09h         I      23    17h        I      73    49h
  76. ^J - LF    10   0Ah         J      36    24h        J      74    4Ah
  77. ^K - VT    11   0Bh         K      37    25h        K      75    4Bh
  78. ^L - FF    12   0Ch         L      38    26h        L      76    4Ch
  79. ^M - CR    13   0Dh         M      50    32h        M      77    4Dh
  80. ^N - SO    14   0Eh         N      49    31h        N      78    4Eh
  81. ^O - SI    15   0Fh         O      24    18h        O      79    4Fh
  82. ^P - DLE   16   10h         P      25    19h        P      80    50h
  83. ^Q - DCI   17   11h         Q      16    10h        Q      81    51h
  84. ^R - DC2   18   12h         R      19    13h        R      82    52h
  85. ^S - DC3   19   13h         S      31    1Fh        S      83    53h
  86. ^T - DC4   20   14h         T      20    14h        T      84    54h
  87. ^U - NAK   21   15h         U      22    16h        U      85    55h
  88. ^V - SYN   22   16h         V      47    2Fh        V      86    56h
  89. ^W - ETB   23   17h         W      17    11h        W      87    57h
  90. ^X - CAN   24   18h         X      45    2Dh        X      88    58h
  91. ^Y - EM    25   19h         Y      21    15h        Y      89    59h
  92. ^Z - SUB   26   1Ah         Z      44    2Ch        Z      90    5Ah
  93. ^[ - ESC   27   1Bh         [      26    1Ah        [      91    5Bh
  94. ^\ - FS    28   1Ch         \      43    2Bh        \      92    5Ch
  95. ^] - GS    29   1Dh         ]      27    1Bh        ]      93    5Dh
  96. ^^ - RS    30   1Eh         ^       7    07h        ^      94    5Eh
  97. ^- - US    31   1Fh         -      12    0Ch        -      45    2Dh
  98.  
  99.  
  100.  
  101.  
  102.  
  103.